Termination Proof Script

Consider the TRS R consisting of the rewrite rules
1:    quot(0,s(y),s(z))  → 0
2:    quot(s(x),s(y),z)  → quot(x,y,z)
3:    plus(0,y)  → y
4:    plus(s(x),y)  → s(plus(x,y))
5:    quot(x,0,s(z))  → s(quot(x,plus(z,s(0)),s(z)))
There are 4 dependency pairs:
6:    QUOT(s(x),s(y),z)  → QUOT(x,y,z)
7:    PLUS(s(x),y)  → PLUS(x,y)
8:    QUOT(x,0,s(z))  → QUOT(x,plus(z,s(0)),s(z))
9:    QUOT(x,0,s(z))  → PLUS(z,s(0))
The approximated dependency graph contains 2 SCCs: {7} and {6,8}. Hence the TRS is terminating.
Tyrolean Termination Tool  (0.02 seconds)   ---  May 3, 2006